home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / pcresrc / pcr8808.arc / GET.BAT < prev    next >
DOS Batch File  |  1988-02-17  |  289b  |  19 lines

  1. echo off
  2. if "%1"=="" goto nofind
  3. if not exist %1 goto nofind
  4. CLS
  5. copy %1 nufile > nul
  6. :loop
  7. if "%2"=="" goto display
  8. find "%2" nufile > temp
  9. copy temp nufile > nul
  10. shift
  11. goto loop
  12. :display
  13. type nufile | more
  14. type srt.lbl
  15. goto end
  16. :nofind
  17. echo file "%1" not located
  18. :end
  19.